home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / tpop3.zip / POP3MAIL.DPR < prev    next >
Text File  |  1996-04-11  |  256b  |  15 lines

  1. program Pop3mail;
  2.  
  3. uses
  4.   Forms,
  5.   Pop3main in 'POP3MAIN.PAS' {POP3Form},
  6.   Pop3su in 'POP3SU.PAS' {SetupDlg},
  7.   Msgdcd in 'MSGDCD.PAS' {MsgProcessor};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TPOP3Form, POP3Form);
  13.   Application.Run;
  14. end.
  15.